type runtime.heapArena

8 uses

	runtime (current package)
		malloc.go#L575: 		const arenaMetaSize = (1 << arenaBits) * unsafe.Sizeof(heapArena{})
		malloc.go#L741: 			l2 = (*[1 << arenaL2Bits]*heapArena)(persistentalloc(unsafe.Sizeof(*l2), goarch.PtrSize, nil))
		malloc.go#L751: 		var r *heapArena
		malloc.go#L752: 		r = (*heapArena)(h.heapArenaAlloc.alloc(unsafe.Sizeof(*r), goarch.PtrSize, &memstats.gcMiscSys))
		malloc.go#L754: 			r = (*heapArena)(persistentalloc(unsafe.Sizeof(*r), goarch.PtrSize, &memstats.gcMiscSys))
		mheap.go#L154: 	arenas [1 << arenaL1Bits]*[1 << arenaL2Bits]*heapArena
		mheap.go#L226: type heapArena struct {
		mheap.go#L688: func pageIndexOf(p uintptr) (arena *heapArena, pageIdx uintptr, pageMask uint8) {